home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / vsc92nov.zip / mode.h < prev    next >
C/C++ Source or Header  |  1992-11-02  |  442b  |  20 lines

  1. /*
  2.  * mode.h -- Declarations for Scheme modes
  3.  *
  4.  * (C) m.b (Matthias Blume), Wed May 13 16:52:29 MET DST 1992, HUB/Ger
  5.  *         Humboldt-University of Berlin, Germany
  6.  *
  7.  * ident "@(#) mode.h (C) M.Blume, Humboldt-Uni Berlin, 1.2"
  8.  */
  9.  
  10. # ifndef MODE_H_
  11. # define MODE_H_
  12.  
  13. # define SCM_INPUT_PORT_MODE    0
  14. # define SCM_OUTPUT_PORT_MODE    1
  15. # define SCM_ERROR_HANDLER_MODE    2
  16. # define SCM_GC_STRATEGY_MODE    3
  17. # define SCM_INTERRUPT_MODE    4
  18.  
  19. # endif
  20.